home *** CD-ROM | disk | FTP | other *** search
/ Roujin Z / Roujin Z.iso / mac / Roujin Z 16Bit PM / Roujin Z 16Bit PM.dxr / 00065_menu.ls < prev    next >
Encoding:
Text File  |  1996-03-12  |  524 b   |  25 lines

  1. on mouseDown
  2.   puppetSound("click down")
  3.   set start to the castNum of sprite the clickOn
  4.   repeat with variable = 1 to 1
  5.     set wait to the ticks + 1
  6.     updateStage()
  7.     repeat while the ticks < wait
  8.     end repeat
  9.   end repeat
  10.   repeat while the stillDown
  11.   end repeat
  12. end
  13.  
  14. on mouseUp
  15.   puppetSound("click up")
  16.   set start to the castNum of sprite the clickOn
  17.   repeat with variable = 1 to 1
  18.     set wait to the ticks + 1
  19.     updateStage()
  20.     repeat while the ticks < wait
  21.     end repeat
  22.   end repeat
  23.   go("menu")
  24. end
  25.